home *** CD-ROM | disk | FTP | other *** search
-
- -- Boolean values
-
- expanded class interface BOOLEAN
- exported features
- infix "and" (other:BOOLEAN):BOOLEAN
- -- Boolean conjunction of current boolean and 'other'
- infix "and then" (other:BOOLEAN):BOOLEAN
- -- Boolean semi-strict conjunction of current boolean and 'other'
- infix "implies" (other:BOOLEAN):BOOLEAN
- -- Boolean implication of current boolean and 'other' (semi-strict)
- prefix "not":BOOLEAN
- -- Negation of current boolean
- infix "or" (other:BOOLEAN):BOOLEAN
- -- Boolean disjunction of current boolean and 'other'
- infix "or else" (other:BOOLEAN):BOOLEAN
- -- Boolean semi-strict disjounction of current boolean and 'other'
- infix "xor" (other:BOOLEAN):BOOLEAN
- -- Boolean exclusive or of current boolean and 'other'
- end interface -- class 'BOOLEAN'
-